home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / system / ffg202.zip / UTIL_BAT.ZIP / GATHER.BAT < prev    next >
DOS Batch File  |  1994-08-14  |  645b  |  23 lines

  1. @echo off
  2. cls
  3. if not %2.==. goto OKAY
  4. goto USAGE
  5. :OKAY
  6.   :: This utility gathers copies a group of files into a specified directory.
  7.   ::
  8.   :: %1 holds the destination path for the group of files
  9.   :: %2 is mandatory and holds the file filter
  10.   :: %3 - %9 hold additional file filtering info criteria
  11.   ::
  12.   ffg /qm %2 "/ecopy %%p\%%n %1" %3 %4 %5 %6 %7 %8 %9
  13.   @echo off
  14.   goto END
  15. :USAGE
  16.   echo.
  17.   echo USAGE: %0 DestPath [DriveSpec:]FileMask [FFG options]
  18.   echo.
  19.   echo   "%0" gathers copies a group of files into a specified directory.
  20.   echo   The user is given an opportunity to confirm for each file.
  21.   echo.
  22. :END
  23.